home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / comms / ho5jx.zip / phone.bat < prev    next >
DOS Batch File  |  1994-09-26  |  1KB  |  60 lines

  1. @echo off
  2. rem Hands on demo menu
  3. rem Fri  09-23-1994  11:00:59 started as a more elaborate demonstration
  4. rem
  5. :start
  6. homnu menu "t:Phone entries" "General" "Select" "New " "Edit " "Modem setup" "Help" "Exit" nc
  7. if errorlevel == 7 goto :end
  8. if errorlevel == 6 goto :help
  9. if errorlevel == 5 goto :reset
  10. if errorlevel == 4 goto :editdial
  11. if errorlevel == 3 goto :new
  12. if errorlevel == 2 goto :dial
  13. if errorlevel == 1 goto :general
  14. goto :end
  15.  
  16. :general
  17. 1sthand call
  18. rem   makecall is run because it might exist
  19. call makecall
  20. erase makecall.bat
  21. echo  Makecall.bat is run because you might have selected an entry
  22. rem pause
  23. cls
  24. goto :start
  25.  
  26. :dial
  27. 1sthand dial
  28. rem   makecall is run because it might exist
  29. call makecall
  30. erase makecall.bat
  31. cls
  32. goto :start
  33.  
  34. :new
  35. 1sthand dial new
  36. goto :start
  37.  
  38. :editdial
  39. 1sthand dial edit
  40. goto :start
  41.  
  42. :reset
  43. cls
  44. echo .
  45. echo . Now configuring the modem.  Try doing it daily.
  46. echo .
  47. echo . This just runs HOMODSET with the homodset.dat file.
  48. echo .
  49. homodset
  50. goto :start
  51.  
  52. :help
  53. rem basic help
  54. 1sthand
  55. goto :start
  56.  
  57. :end
  58. homenu.bat
  59. rem   END
  60.